 :root {
     --primary-color: #4a90e2;
     /* A vibrant blue */
     --secondary-color: #50e3c2;
     /* Grey for secondary elements */
     --light-bg: #3a73ac;
     /* Light background for scrolled state */
     --text-color: #343a40;
     /* Dark text */
     --hover-color: #0056b3;
     /* Darker blue on hover */
     --border-radius: 8px;
     --transition-speed: 0.3s ease;
 }
:root {
    --primary-color: #4a90e2;
    --secondary-color: #50e3c2;
    --bg-start: #f4f6f9;
    --bg-end: #eaf1f7;
    --text-color: #333;
    --heading-color: #1a1a1a;
}
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 /* Header Styles */
 .suraj-main-header {
     width: 100%;
     position: absolute;
     top: 0;
     left: 0;
     z-index: 9999;
     padding: 25px 0;
     /* Increased padding for more breathing room */
     background: transparent;
     transition: background-color var(--transition-speed), height var(--transition-speed), box-shadow var(--transition-speed);
 }

 .suraj-main-header.suraj-scrolled {
     position: fixed;
     background-color: rgba(246, 243, 243, 0.98);
     /* Less transparent white */
     height: 95px;
     /* Slightly adjusted height */
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     /* Softer, deeper shadow */
 }

 .suraj-container {
     width: 90%;
     max-width: 1300px;
     /* Slightly wider container */
     margin: auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 /* Logo Styling */
 .suraj-logo a {
     font-family: 'Poppins', sans-serif;
     /* Distinct font for logo */
     font-size: 32px;
     /* Larger logo */
     font-weight: 700;
     /* Bolder */
     color: #c61414;
     /* White for initial transparent header */
     text-decoration: none;
     position: relative;
     /* For the "4U" span */
 }

 .suraj-main-header.suraj-scrolled .suraj-logo a {
     color: var(--primary-color);
     /* Primary color when scrolled */
 }

 .suraj-logo a span {
     color: #ffc107;
     /* A bright accent color for '4U' */
     font-weight: 900;
 }

 @keyframes suraj-fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.95);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .suraj-logo a {
     animation: suraj-fadeInScale 0.8s ease-out forwards;
     /* Apply animation */
 }

 /* Navigation Links */
 .suraj-main-nav .suraj-nav-links {
     list-style: none;
     display: flex;
     gap: 30px;
     /* Increased space between links */
 }

 .suraj-main-nav .suraj-nav-links li a {
     text-decoration: none;
     color: #020202;
     /* White for initial state */
     font-size: 16px;
     font-weight: 500;
     padding: 8px 0;
     /* Padding for hover effect */
     position: relative;
     transition: color var(--transition-speed);
 }

 .suraj-main-header.suraj-scrolled .suraj-main-nav .suraj-nav-links li a {
     color: var(--text-color);
     /* Dark text when scrolled */
 }

 .suraj-main-nav .suraj-nav-links li a:hover {
     color: var(--primary-color);
     /* Primary color on hover */
 }

 .suraj-main-nav .suraj-nav-links li a::after {
     /* Underline effect */
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary-color);
     transition: width var(--transition-speed) ease-out;
 }

 .suraj-main-nav .suraj-nav-links li a:hover::after {
     width: 100%;
 }

 /* Dropdown Menu */
 .suraj-has-dropdown {
     position: relative;
 }

 .suraj-dropdown-menu {
     display: none;
     position: absolute;
     top: 100%;
     /* Position below the parent link */
     left: 50%;
     /* Center dropdown relative to parent */
     transform: translateX(-50%);
     /* Adjust for centering */
     background: #fff;
     padding: 20px;
     /* More padding */
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     /* Stronger, softer shadow */
     border-radius: var(--border-radius);
     min-width: 400px;
     /* Wider dropdown */
     z-index: 1000;
     flex-direction: row;
     /* For side-by-side columns */
     gap: 30px;
     opacity: 0;
     visibility: hidden;
     transform: translate(-50%, 10px);
     /* Initial position for animation */
     transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
 }

 .suraj-has-dropdown:hover .suraj-dropdown-menu {
     display: flex;
     opacity: 1;
     visibility: visible;
     transform: translate(-50%, 0);
     /* Final position for animation */
 }

 .suraj-dropdown-col {
     flex: 1;
     /* Equal width columns */
 }

 .suraj-dropdown-col h4 {
     font-size: 15px;
     font-weight: 600;
     color: var(--primary-color);
     margin-bottom: 12px;
     border-bottom: 1px solid #bb3434;
     /* Separator */
     padding-bottom: 5px;
 }

 .suraj-dropdown-col ul {
     list-style: none;
 }

 .suraj-dropdown-col ul li a {
     display: flex;
     /* For icon and text alignment */
     align-items: center;
     padding: 8px 0;
     color: var(--text-color);
     font-size: 15px;
     text-decoration: none;
     transition: color 0.2s ease, transform 0.2s ease;
 }

 .suraj-dropdown-col ul li a:hover {
     color: var(--primary-color);
     transform: translateX(5px);
     /* Slight slide on hover */
 }

 .suraj-dropdown-col ul li a i {
     margin-right: 10px;
     color: var(--primary-color);
     /* Icon color */
 }

 /* Hamburger Menu */
 .suraj-hamburger-menu {
     display: none;
     /* Default hide for larger screens */
     background: none;
     font-size: 30px;
     /* Larger icon */
     border: none;
     cursor: pointer;
     color: #050505;
     /* White for initial state (adjust as needed for your background) */
     transition: color var(--transition-speed);
 }

 .suraj-main-header.suraj-scrolled .suraj-hamburger-menu {
     color: var(--text-color);
     /* Dark text when scrolled */
 }

 /* Mobile Menu Overlay */
 .suraj-mobile-menu-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(220, 227, 235, 0.98);
     /* Solid white with slight transparency */
     z-index: 10000;
     padding: 40px 20px;
     overflow-y: auto;
     /* For scrollable content if menu is long */
     transform: translateX(100%);
     /* Start off-screen */
     transition: transform 0.4s ease-out, visibility 0s 0.4s;
     /* Added visibility transition delay */
     visibility: hidden;
     /* Hide without removing from layout */
 }

 .suraj-mobile-menu-overlay.suraj-open {
     /* Class added by JS */
     transform: translateX(0);
     visibility: visible;
     /* Make it visible */
     transition: transform 0.4s ease-out, visibility 0s 0s;
     /* Remove visibility delay when opening */
 }

 .suraj-mobile-menu-overlay .suraj-close-menu {
     position: absolute;
     top: 20px;
     right: 20px;
     font-size: 30px;
     /* Larger close icon */
     background: none;
     border: none;
     cursor: pointer;
     color: var(--text-color);
 }

 .suraj-mobile-menu-overlay ul {
     list-style: none;
     margin-top: 60px;
 }

 .suraj-mobile-menu-overlay ul li {
     margin: 25px 0;
     /* More spacing */
 }

 .suraj-mobile-menu-overlay ul li a {
     text-decoration: none;
     color: var(--text-color);
     font-size: 22px;
     /* Larger font for readability */
     font-weight: 500;
     display: block;
     padding: 10px 0;
     transition: color 0.2s ease;
 }

 .suraj-mobile-menu-overlay ul li a:hover {
     color: var(--primary-color);
 }

 /* Responsive Adjustments */
 @media (max-width: 992px) {

     /* Adjust breakpoint for larger tablets */
     .suraj-main-nav .suraj-nav-links {
         display: none;
         /* Hide desktop nav links */
     }

     .suraj-hamburger-menu {
         display: block;
         /* Show hamburger on smaller screens */
     }

     .suraj-logo a {
         font-size: 26px;
     }

     .suraj-main-header.suraj-scrolled .suraj-logo a {
         font-size: 24px;
         /* Smaller logo when scrolled on mobile */
     }
 }

 @media (max-width: 576px) {
     .suraj-logo a {
         font-size: 24px;
     }

     .suraj-main-header.suraj-scrolled .suraj-logo a {
         font-size: 20px;
     }

     .suraj-mobile-menu-overlay ul li a {
         font-size: 18px;
         /* Smaller font on very small screens */
     }
 }
 
 
 /*foooter code */
  /* Footer Styling */
        .site-footer {
            background-color: #f7f7f7; /* Light grey background for a modern look */
            color: #555;
            padding: 40px 20px;
            border-top: 1px solid #eee; /* Light border at the top */
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05); /* Subtle shadow for depth */
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap; /* Columns wrap on smaller screens */
            justify-content: space-between;
            gap: 30px; /* Space between columns */
        }

        .footer-column {
            flex: 1; /* Equal width for columns */
            min-width: 250px; /* Minimum width before wrapping */
            margin-bottom: 20px; /* Space below columns on smaller screens */
        }

        /* Logo Styling */
        .footer-logo {
            margin-bottom: 15px;
        }
        .footer-logo img {
            max-width: 180px; /* Adjust as needed */
            height: auto;
            display: block; /* Remove extra space below image */
        }

        /* About Us Text */
        .about-us p {
            font-size: 0.95em;
            line-height: 1.8;
            color: #666;
        }

        /* Headings */
        .site-footer h3 {
            color: #333;
            font-size: 1.2em;
            margin-bottom: 18px;
            position: relative; /* For underline effect */
        }

        /* Underline effect for headings */
        .site-footer h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 40px;
            height: 3px;
            background-color: #007bff; /* Primary color for highlight */
            border-radius: 2px;
        }

        /* List Styling */
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer ul li {
            margin-bottom: 12px;
        }

        .site-footer ul li a {
            text-decoration: none;
            color: #555;
            font-size: 0.95em;
            transition: color 0.3s ease, transform 0.3s ease;
            display: flex; /* For icon alignment */
            align-items: center;
        }

        .site-footer ul li a:hover {
            color: #007bff; /* Hover effect */
            transform: translateX(5px); /* Slight slide effect on hover */
        }

        /* Font Awesome Icons */
        .site-footer ul li a i,
        .site-footer ul li address i {
            margin-right: 8px;
            color: #007bff; /* Icon color */
            font-size: 1.1em;
        }

        /* Address Styling */
        .contact-info address {
            font-style: normal; /* Remove italics for address */
            font-size: 0.95em;
            color: #555;
            display: flex;
            align-items: flex-start;
        }

        /* Footer Bottom Section */
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 0.85em;
            color: #777;
        }

        /* Custom styles for the "Powered by" links */
        .Powered {
            font-weight: 500;
            color: #333; /* Default black-ish color, adjusted from pure black for better contrast */
            text-decoration: none;
            transition: color 0.3s ease; /* Smooth transition for hover effect */
        }

        .Powered:hover {
            color: #ffc107; /* Yellow on hover (a bit brighter yellow) */
        }


        /* --- Responsive Design (Mobile First) --- */

        /* Tablet & Smaller Desktops */
        @media (max-width: 992px) {
            .footer-column {
                min-width: 200px; /* Adjust min-width for better wrapping */
            }
            .footer-container {
                justify-content: center; /* Center columns when they wrap */
            }
        }

        /* Mobile Devices */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column; /* Stack columns vertically on small screens */
                align-items: flex-start; /* Align items to the start */
                gap: 25px; /* Reduce gap */
            }

            .footer-column {
                width: 100%; /* Full width for each column */
                min-width: unset; /* Remove min-width constraint */
                text-align: left; /* Align text to left */
                margin-bottom: 0; /* Remove extra margin */
            }

            .site-footer h3 {
                margin-bottom: 12px; /* Adjust heading margin */
            }

            .site-footer h3::after {
                width: 30px; /* Smaller underline */
                bottom: -3px;
            }

            .footer-logo {
                text-align: left; /* Ensure logo is left-aligned */
            }
        }

        /* Smallest Mobile Devices */
        @media (max-width: 480px) {
            .site-footer {
                padding: 30px 15px; /* Reduce padding */
            }
            .footer-logo img {
                max-width: 150px;
            }
            .site-footer h3 {
                font-size: 1.1em;
            }
            .site-footer ul li a,
            .about-us p,
            .contact-info address {
                font-size: 0.9em;
            }
            .footer-bottom {
                font-size: 0.8em;
                margin-top: 30px;
            }
        }
        
        
  /* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 80px;
  height: 80px;
  background-image: url('https://dummyticketsbooking.com/wp-content/uploads/2025/07/Whatsapp-icon.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

/* Shake animation keyframes */
@keyframes shake {
  0% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-2px, 0) rotate(-5deg); }
  40% { transform: translate(2px, 0) rotate(5deg); }
  60% { transform: translate(-2px, 0) rotate(-5deg); }
  80% { transform: translate(2px, 0) rotate(5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Apply shake on hover */
.whatsapp-float:hover {
  animation: shake 0.6s ease;
}



/*==================================*/
/* Maintenance Mode Watermark */
body::before {
    content: "Dummy Website"; /* Watermark text */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg); /* Center and rotate */
    font-size: 5vw; /* Responsive size */
    color: rgba(255, 0, 0, 0.3); /* Dark red, semi-transparent */
    font-weight: bold;
    letter-spacing: 2px;
    pointer-events: none; /* Allows clicks through watermark */
    z-index: 999999; /* On top of all content */
    white-space: nowrap; /* Prevents wrapping */
    text-transform: uppercase; /* All caps */
}

/* Smaller screens adjustment */
@media (max-width: 480px) {
    body::before {
        font-size: 8vw;
    }
}
